Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ranfdev committed Apr 29, 2022
1 parent 0d8a45d commit b128e43
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geopard"
version = "1.0.0-alpha"
version = "1.0.0"
authors = ["ranfdev <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion build-aux/com.ranfdev.Geopard.Devel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"app-id" : "com.ranfdev.Geopard.Devel",
"runtime" : "org.gnome.Sdk",
"runtime" : "org.gnome.Platform",
"runtime-version" : "42",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
Expand Down
2 changes: 1 addition & 1 deletion build-aux/com.ranfdev.Geopard.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"app-id" : "com.ranfdev.Geopard",
"runtime" : "org.gnome.Sdk",
"runtime" : "org.gnome.Platform",
"runtime-version" : "42",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
Expand Down
2 changes: 1 addition & 1 deletion build-aux/dist-vendor.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
export DIST="$1"
export SOURCE_ROOT="$2"

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'geopard',
'rust',
version: '1.0.0-alpha',
version: '1.0.0',
meson_version: '>= 0.59',
# license: MIT,
)
Expand Down
12 changes: 6 additions & 6 deletions src/config.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pub const APP_ID: &str = "com.ranfdev.Geopard.Devel";
pub const APP_ID: &str = "com.ranfdev.Geopard";
pub const GETTEXT_PACKAGE: &str = "geopard";
pub const LOCALEDIR: &str = "/app/share/locale";
pub const PKGDATADIR: &str = "/app/share/geopard";
pub const PROFILE: &str = "Devel";
pub const RESOURCES_FILE: &str = concat!("/app/share/geopard", "/resources.gresource");
pub const VERSION: &str = "1.0.0-alpha-a6cb0a0";
pub const LOCALEDIR: &str = "/usr/local/share/locale";
pub const PKGDATADIR: &str = "/usr/local/share/geopard";
pub const PROFILE: &str = "";
pub const RESOURCES_FILE: &str = concat!("/usr/local/share/geopard", "/resources.gresource");
pub const VERSION: &str = "1.0.0-alpha";

use once_cell::sync::Lazy;
use serde::{Deserialize, Serialize};
Expand Down

0 comments on commit b128e43

Please sign in to comment.