Skip to content

Commit b128e43

Browse files
committed
v1.0.0
1 parent 0d8a45d commit b128e43

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geopard"
3-
version = "1.0.0-alpha"
3+
version = "1.0.0"
44
authors = ["ranfdev <ranfdev@gmail.com>"]
55
edition = "2021"
66

build-aux/com.ranfdev.Geopard.Devel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"app-id" : "com.ranfdev.Geopard.Devel",
3-
"runtime" : "org.gnome.Sdk",
3+
"runtime" : "org.gnome.Platform",
44
"runtime-version" : "42",
55
"sdk" : "org.gnome.Sdk",
66
"sdk-extensions" : [

build-aux/com.ranfdev.Geopard.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"app-id" : "com.ranfdev.Geopard",
3-
"runtime" : "org.gnome.Sdk",
3+
"runtime" : "org.gnome.Platform",
44
"runtime-version" : "42",
55
"sdk" : "org.gnome.Sdk",
66
"sdk-extensions" : [

build-aux/dist-vendor.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
export DIST="$1"
33
export SOURCE_ROOT="$2"
44

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'geopard',
33
'rust',
4-
version: '1.0.0-alpha',
4+
version: '1.0.0',
55
meson_version: '>= 0.59',
66
# license: MIT,
77
)

src/config.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
pub const APP_ID: &str = "com.ranfdev.Geopard.Devel";
1+
pub const APP_ID: &str = "com.ranfdev.Geopard";
22
pub const GETTEXT_PACKAGE: &str = "geopard";
3-
pub const LOCALEDIR: &str = "/app/share/locale";
4-
pub const PKGDATADIR: &str = "/app/share/geopard";
5-
pub const PROFILE: &str = "Devel";
6-
pub const RESOURCES_FILE: &str = concat!("/app/share/geopard", "/resources.gresource");
7-
pub const VERSION: &str = "1.0.0-alpha-a6cb0a0";
3+
pub const LOCALEDIR: &str = "/usr/local/share/locale";
4+
pub const PKGDATADIR: &str = "/usr/local/share/geopard";
5+
pub const PROFILE: &str = "";
6+
pub const RESOURCES_FILE: &str = concat!("/usr/local/share/geopard", "/resources.gresource");
7+
pub const VERSION: &str = "1.0.0-alpha";
88

99
use once_cell::sync::Lazy;
1010
use serde::{Deserialize, Serialize};

0 commit comments

Comments
 (0)